home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
HELLO.C
< prev
next >
Wrap
C/C++ Source or Header
|
1996-06-19
|
156b
|
9 lines
#include <stdio.h>
#include "./cgi.h"
cgi_main(cgi_info *ci) {
print_mimeheader("text/html");
printf("<html>Hello World!</html>");
return 1;
}